home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / utilities / print / pspager.lha / psp / pspager.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-16  |  667 b   |  34 lines

  1. #ifndef _PSPAGER_H
  2. #define _PSPAGER_H
  3. /*
  4. **      $VER: pspager.h 1.0 (15.4.94)
  5. **
  6. **      General definitions for pspager.
  7. **
  8. **      (C) Copyright 1994 Rainer Koppler
  9. */
  10.  
  11.  
  12. /* should be defined by using the -D option of cc to enhance portability ! */
  13. #ifndef PSP_LIBDIR
  14. #ifdef AMIGA
  15. #define PSP_LIBDIR  "S:"
  16. #else
  17. #define PSP_LIBDIR  "/usr/local/lib"
  18. #endif
  19. #endif
  20.  
  21. /* missing ANSI declarations for GNU-C */
  22. #ifdef __GNUC__
  23. /* stdio.h */
  24. extern int puts(char *);
  25. /* string.h */
  26. extern void *memset(void *, int, size_t);
  27. /* time.h */
  28. extern time_t time(time_t *);
  29. extern size_t strftime(char *, size_t, const char *, const struct tm *);
  30. #endif
  31.  
  32.  
  33. #endif /*_PSPAGER_H*/
  34.